home *** CD-ROM | disk | FTP | other *** search
/ 600 Games / 600games.iso / Classicos / MiniclipsTetris.swf / scripts / DefineButton2_227 / BUTTONCONDACTION on(press).as
Encoding:
Text File  |  2005-08-04  |  236 b   |  13 lines

  1. on(press){
  2.    if(_parent.rotationDir eq "cw")
  3.    {
  4.       _parent.rotationDir = "ccw";
  5.       rotationText = "ROTATION: LEFT";
  6.    }
  7.    else
  8.    {
  9.       _parent.rotationDir = "cw";
  10.       rotationText = "ROTATION: RIGHT";
  11.    }
  12. }
  13.